net/http.http2responseWriterState.snapHeader (field)

13 uses

	net/http (current package)
		h2_bundle.go#L6590: 	snapHeader    Header   // snapshot of handlerHeader at WriteHeader time
		h2_bundle.go#L6661: 		if clen = rws.snapHeader.Get("Content-Length"); clen != "" {
		h2_bundle.go#L6662: 			rws.snapHeader.Del("Content-Length")
		h2_bundle.go#L6669: 		_, hasContentLength := rws.snapHeader["Content-Length"]
		h2_bundle.go#L6673: 		_, hasContentType := rws.snapHeader["Content-Type"]
		h2_bundle.go#L6676: 		ce := rws.snapHeader.Get("Content-Encoding")
		h2_bundle.go#L6682: 		if _, ok := rws.snapHeader["Date"]; !ok {
		h2_bundle.go#L6687: 		for _, v := range rws.snapHeader["Trailer"] {
		h2_bundle.go#L6696: 		if _, ok := rws.snapHeader["Connection"]; ok {
		h2_bundle.go#L6697: 			v := rws.snapHeader.Get("Connection")
		h2_bundle.go#L6698: 			delete(rws.snapHeader, "Connection")
		h2_bundle.go#L6708: 			h:             rws.snapHeader,
		h2_bundle.go#L6979: 		rws.snapHeader = http2cloneHeader(rws.handlerHeader)